16 lines
334 B
JSON
16 lines
334 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES6",
|
||
|
|
"module": "es6",
|
||
|
|
"lib": ["es6", "dom"],
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"noEmit": true,
|
||
|
|
"downlevelIteration": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"strict": true,
|
||
|
|
"forceConsistentCasingInFileNames": true
|
||
|
|
},
|
||
|
|
"include": ["./*.ts"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|