mirror of
https://github.com/aitingtingya/mv-obcc.git
synced 2026-07-22 07:47:28 +00:00
33 lines
655 B
JSON
33 lines
655 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"useDefineForClassFields": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"src/*": [
|
|
"src/vendor/latex-suite/src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"node"
|
|
],
|
|
"lib": [
|
|
"DOM",
|
|
"ES2022"
|
|
]
|
|
},
|
|
"include": [
|
|
"main.ts",
|
|
"src/**/*.ts"
|
|
]
|
|
}
|