This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-04-30 01:32:11 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
2021-05-18 18:29:20 +02:00
|
|
|
"module": "commonjs",
|
2021-04-30 01:32:11 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["esnext", "dom"],
|
2021-05-18 18:29:20 +02:00
|
|
|
"types": ["vite/client", "@types/mocha"]
|
2021-04-30 01:32:11 +02:00
|
|
|
},
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
|
|
}
|