2021-03-31 18:14:03 +02:00
|
|
|
{
|
2021-08-02 12:12:08 +02:00
|
|
|
"compilerOptions":
|
|
|
|
{
|
2021-08-03 18:19:50 +02:00
|
|
|
"outDir": "./src/build",
|
|
|
|
"module": "ES6",
|
2021-05-18 12:17:38 +02:00
|
|
|
"target": "es5",
|
2021-08-03 18:19:50 +02:00
|
|
|
"strict":true,
|
|
|
|
"removeComments": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"skipLibCheck": true,
|
2021-08-02 12:12:08 +02:00
|
|
|
},
|
2022-01-18 18:16:31 +01:00
|
|
|
"include": ["src/*", "src/demo/*"],
|
2021-08-03 18:19:50 +02:00
|
|
|
"exclude": ["src/build"]
|
2021-03-31 18:14:03 +02:00
|
|
|
}
|