29 lines
635 B
JSON
29 lines
635 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"baseUrl": ".",
|
|
"typeRoots": ["node_modules/@types", "@types"],
|
|
"paths": {
|
|
"@common/*": [
|
|
"./src/common/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.tsx",
|
|
"src/**/*.ts",
|
|
"@types/*.d.ts",
|
|
]
|
|
} |