17 lines
325 B
JSON
17 lines
325 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"lib": ["ES2020", "DOM"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["*"]
|
|
}
|
|
},
|
|
"include": ["**/*.js", "**/*.d.ts"],
|
|
"exclude": ["probe/cache/**/*"]
|
|
}
|