31 lines
787 B
JSON
31 lines
787 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"baseUrl": "./",
|
|
// "lib": ["es6", "dom"],
|
|
"jsx": "react",
|
|
// "allowJs": true,
|
|
"allowSyntheticDefaultImports": true
|
|
// "moduleResolution": "node",
|
|
// "rootDir": "src",
|
|
// "forceConsistentCasingInFileNames": true,
|
|
// "noImplicitReturns": true,
|
|
// "noImplicitThis": true,
|
|
// "noImplicitAny": true,
|
|
// "importHelpers": true,
|
|
// "strictNullChecks": true,
|
|
// "suppressImplicitAnyIndexErrors": true,
|
|
// "noUnusedLocals": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./node_modules",
|
|
"build",
|
|
"*.test.ts"
|
|
]
|
|
}
|