2022-01-25 19:10:40 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": false,
|
2022-01-30 11:37:14 +01:00
|
|
|
"module": "amd",
|
|
|
|
"moduleResolution": "node",
|
2022-02-12 08:11:59 +01:00
|
|
|
"target": "ES2020",
|
2022-01-25 19:10:40 +01:00
|
|
|
"allowJs": true,
|
2022-01-26 07:33:39 +01:00
|
|
|
"esModuleInterop": true,
|
2022-01-30 11:37:14 +01:00
|
|
|
"declaration": true,
|
2022-01-26 07:33:39 +01:00
|
|
|
"rootDirs": [
|
|
|
|
"src",
|
|
|
|
]
|
2022-01-25 19:10:40 +01:00
|
|
|
},
|
2022-01-30 11:37:14 +01:00
|
|
|
"include": [
|
2022-08-26 03:35:59 +02:00
|
|
|
"src/**/*",
|
|
|
|
"../editor/src/classes/menu/AccountSettingsPanel.js",
|
|
|
|
"../editor/src/classes/menu/IMenu.ts"
|
|
|
|
],
|
2022-01-30 11:37:14 +01:00
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2022-01-25 19:10:40 +01:00
|
|
|
}
|