mirror of
https://github.com/zhigang1992/firecms.git
synced 2026-01-12 22:47:25 +08:00
43 lines
887 B
JSON
43 lines
887 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"module": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"moduleResolution": "node",
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es5",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"./src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"example",
|
|
"example_backend",
|
|
"test"
|
|
]
|
|
}
|