2021-08-05 11:05:05 +02:00
|
|
|
{
|
|
|
|
"compilerOptions":
|
|
|
|
{
|
|
|
|
"outDir": "./src/build",
|
|
|
|
"module": "ES6",
|
|
|
|
"target": "es5",
|
|
|
|
"strict":true,
|
|
|
|
"removeComments": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
},
|
2021-11-04 15:50:40 +01:00
|
|
|
"include": ["src/*", "src/demo/*"],
|
2021-08-05 11:05:05 +02:00
|
|
|
"exclude": ["src/build"]
|
|
|
|
}
|