29 lines
774 B
JSON
Executable File
29 lines
774 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
// "jsx": "preserve",
|
|
// "module": "commonjs",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"module": "esnext",
|
|
"target": "es5",
|
|
"lib": ["es6", "dom", "es2016", "es2017"],
|
|
"jsx": "react",
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"sourceMap": false,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"exclude": [
|
|
"./var/plugins/",
|
|
]
|
|
}
|
|
|