16 lines
328 B
JSON
16 lines
328 B
JSON
|
{
|
||
|
"compilerOptions":
|
||
|
{
|
||
|
"outDir": "./src/build",
|
||
|
"module": "ES6",
|
||
|
"target": "es5",
|
||
|
"strict":true,
|
||
|
"removeComments": true,
|
||
|
"allowJs": true,
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"skipLibCheck": true,
|
||
|
},
|
||
|
"include": ["src/*"],
|
||
|
"exclude": ["src/build"]
|
||
|
}
|