mirror of
https://github.com/wassname/metacar.git
synced 2026-08-21 11:17:48 +08:00
31 lines
764 B
JSON
31 lines
764 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ES2015",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"declaration": true,
|
|
"target": "es5",
|
|
"lib": ["es2015", "dom"],
|
|
"outDir": "./dist-es6",
|
|
"noUnusedLocals": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedParameters": false,
|
|
"pretty": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"demo"
|
|
]
|
|
}
|