27 lines
590 B
JSON
27 lines
590 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "./dist/",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "build", "coverage"]
|
|
}
|