You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
890 B
46 lines
890 B
{ |
|
"compilerOptions": { |
|
"target": "esnext", |
|
"module": "esnext", |
|
"strict": true, |
|
"jsx": "preserve", |
|
"moduleResolution": "node", |
|
"experimentalDecorators": true, |
|
"skipLibCheck": true, |
|
"esModuleInterop": true, |
|
"allowSyntheticDefaultImports": true, |
|
"forceConsistentCasingInFileNames": true, |
|
"useDefineForClassFields": true, |
|
"noImplicitAny": false, |
|
"sourceMap": true, |
|
"baseUrl": "./", |
|
"types": [ |
|
"webpack-env" |
|
], |
|
"paths": { |
|
"@/": [ |
|
"./" |
|
], |
|
"noob-mengyxu": [ |
|
"./index.ts" |
|
] |
|
}, |
|
"lib": [ |
|
"esnext", |
|
"dom", |
|
"dom.iterable", |
|
"scripthost" |
|
] |
|
}, |
|
"include": [ |
|
"examples/**/*.ts", |
|
"examples/**/*.tsx", |
|
"examples/**/*.vue", |
|
"packages/**/*.ts", |
|
"packages/**/*.tsx", |
|
"packages/**/*.vue" |
|
], |
|
"exclude": [ |
|
"node_modules" |
|
] |
|
}
|
|
|