24 lines
550 B
JSON
24 lines
550 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "./dist",
|
|
"sourceMap": true,
|
|
"lib": ["dom", "esnext"],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"target": "ES2017",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", "dist", "dev", "static"]
|
|
}
|