@winged/core
Version:
Morden webapp framekwork made only for ts developers. (UNDER DEVELOPMENT, PLEASE DO NOT USE)
42 lines • 959 B
JSON
{
"compilerOptions": {
"sourceMap": false,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"strict": true,
// "strictNullChecks": false,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"experimentalDecorators": true,
"target": "es5",
"baseUrl": "src",
// "module": "es2015",
"module": "commonjs",
"outDir": "js",
"moduleResolution": "classic",
// NOTE:
// list all needed @types here
// and make sure those who installed by other npm package dosen't bother us (like @types/node)
"types": [
"reflect-metadata",
],
"lib": [
"es2015",
"dom"
]
},
"exclude": [
"dist",
"devDist",
"cli",
"designs"
],
"parcelTsPluginOptions": {
// If true type-checking is disabled
"transpileOnly": true
},
"compileOnSave": false
}