You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
631 B
26 lines
631 B
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"downlevelIteration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"preserveConstEnums": true,
|
|
"importHelpers": true,
|
|
"lib": ["esnext", "dom"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"paths": {
|
|
"*": ["typings/*", "includes/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"strict": true,
|
|
"target": "es5"
|
|
}
|
|
}
|
|
|