28 lines
675 B
JSON
28 lines
675 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"lib": ["DOM", "ES2017"],
|
|
"jsx": "react",
|
|
"module": "esnext",
|
|
"sourceMap": true,
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
// "baseUrl": "./src",
|
|
"importHelpers": true,
|
|
"typeRoots": ["./src/types", "./types", "./node_modules/@types"]
|
|
},
|
|
// "paths": {
|
|
// "~/*": ["./src/*"]
|
|
// },
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
}
|