mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-24 12:47:52 +08:00
49 lines
923 B
JSON
49 lines
923 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"geist-ui": [
|
|
"components/index.tsx"
|
|
]
|
|
},
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"jsx": "preserve",
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitAny": true,
|
|
"target": "es6",
|
|
"lib": [
|
|
"dom",
|
|
"es2017"
|
|
],
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"./typings"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"es",
|
|
"examples",
|
|
"dist"
|
|
],
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"lib/**/*.tsx",
|
|
"components/**/*.tsx"
|
|
]
|
|
}
|