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.
31 lines
663 B
31 lines
663 B
{ |
|
"compilerOptions": { |
|
"declaration": true, |
|
"declarationMap": true, |
|
"esModuleInterop": true, |
|
"forceConsistentCasingInFileNames": true, |
|
"lib": [ |
|
"es2015", |
|
"es5", |
|
"dom" |
|
], |
|
"module": "es6", |
|
"moduleResolution": "node16", |
|
"noEmitOnError": true, |
|
"noFallthroughCasesInSwitch": true, |
|
"noImplicitAny": true, |
|
"noImplicitReturns": true, |
|
"noUnusedLocals": true, |
|
"preserveSymlinks": true, |
|
"preserveWatchOutput": true, |
|
"pretty": false, |
|
"rootDir": "./src.ts", |
|
"sourceMap": true, |
|
"strict": true, |
|
"target": "es2016" |
|
}, |
|
"include": [ |
|
"./src.ts/*.ts" |
|
], |
|
"exclude": [ ] |
|
}
|
|
|