mirror of
https://github.com/mgerb/ps-launcher
synced 2026-01-08 09:32:51 +00:00
40 lines
779 B
JSON
40 lines
779 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"target": "es6",
|
|
"module": "es6",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"preserveConstEnums": true,
|
|
"allowJs": false,
|
|
"sourceMap": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"alwaysStrict": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./@types"
|
|
]
|
|
},
|
|
"filesGlob": [
|
|
"typings/index.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"include": [
|
|
"app"
|
|
],
|
|
"exclude": [
|
|
"android",
|
|
"ios",
|
|
"build",
|
|
"node_modules"
|
|
],
|
|
"compileOnSave": false
|
|
}
|