2023-03-23 20:09:00 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"rootDir": ".",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"lib": ["ESNext"],
|
2023-04-11 22:09:29 +08:00
|
|
|
"target": "es2015",
|
2023-03-23 20:09:00 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
"strict": true,
|
2023-03-27 21:29:14 +08:00
|
|
|
"noEmit": true,
|
2023-04-09 15:20:10 +08:00
|
|
|
"moduleResolution": "node",
|
2023-04-11 22:09:29 +08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"skipDefaultLibCheck": true,
|
2023-04-09 15:20:10 +08:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
2023-04-14 18:16:39 +08:00
|
|
|
}
|
2023-03-23 20:09:00 +08:00
|
|
|
},
|
2023-04-14 18:16:39 +08:00
|
|
|
"include": ["./src", "./test", "./global.d.ts", "./global.variables.d.ts"],
|
2023-04-11 22:09:29 +08:00
|
|
|
"exclude": ["node_modules", "**/*.md", "**/dist"]
|
2023-03-23 20:09:00 +08:00
|
|
|
}
|