forked from pneymrl2f/nightingale
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.
33 lines
684 B
33 lines
684 B
{
|
|
"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/*"
|
|
]
|
|
}
|