nightingale1/web/tsconfig.json

33 lines
684 B
JSON
Raw Normal View History

2020-03-11 18:25:20 +08:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"esModuleInterop": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"target": "es2015",
"module": "es2015",
"strict": true,
"jsx": "react",
"allowJs": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@common/*": ["src/common/*"],
"@cpts/*": ["src/components/*"],
"@interface": ["src/interface"]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules/*",
"dist/*",
"examples/*"
]
}