mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-15 13:38:29 +02:00
22 lines
555 B
JSON
22 lines
555 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"target": "ES2015",
|
|
"module": "commonjs",
|
|
"resolveJsonModule": true,
|
|
"typeRoots": ["../node_modules/@types"],
|
|
"types": ["node", "jest"],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"declaration": false,
|
|
"importHelpers": false,
|
|
"noEmitOnError": false,
|
|
"sourceMap": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["./"],
|
|
"exclude": ["**/node_modules", "**/*.js"]
|
|
}
|