Hastic standalone
https://hastic.io
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.
41 lines
721 B
41 lines
721 B
{ |
|
"compilerOptions": { |
|
"target": "es5", |
|
"module": "esnext", |
|
"strict": false, |
|
"jsx": "preserve", |
|
"importHelpers": true, |
|
"moduleResolution": "node", |
|
"experimentalDecorators": true, |
|
"skipLibCheck": true, |
|
"esModuleInterop": true, |
|
"allowSyntheticDefaultImports": true, |
|
"sourceMap": true, |
|
"baseUrl": ".", |
|
"types": [ |
|
"webpack-env", |
|
"jest" |
|
], |
|
"paths": { |
|
"@/*": [ |
|
"src/*" |
|
] |
|
}, |
|
"lib": [ |
|
"esnext", |
|
"dom", |
|
"dom.iterable", |
|
"scripthost" |
|
] |
|
}, |
|
"include": [ |
|
"src/**/*.ts", |
|
"src/**/*.tsx", |
|
"src/**/*.vue", |
|
"tests/**/*.ts", |
|
"tests/**/*.tsx" |
|
], |
|
"exclude": [ |
|
"node_modules" |
|
] |
|
}
|
|
|