37 lines
639 B
JSON
37 lines
639 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"sourceMap": false,
|
|
"moduleResolution": "Node",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
|
|
"types" : ["node"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"#preload": [
|
|
"../preload/src/index"
|
|
],
|
|
"/@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"lib": ["ESNext", "dom", "dom.iterable"]
|
|
},
|
|
|
|
"include": [
|
|
"src/**/*.vue",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"types/**/*.d.ts",
|
|
"../../types/**/*.d.ts",
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts",
|
|
]
|
|
}
|