mirror of
https://github.com/youfoundjk/TeXcore.git
synced 2026-07-22 07:33:31 +00:00
28 lines
639 B
JSON
28 lines
639 B
JSON
{
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "6.0",
|
|
"rootDir": ".",
|
|
"baseUrl": "./src",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2022",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"lib": ["DOM", "ES5", "ES6", "ES7", "ES2021.String", "DOM.Iterable", "es2022"]
|
|
},
|
|
"include": ["**/*.d.ts", "**/*.ts"],
|
|
"exclude": [
|
|
"src/legacy/*.ts",
|
|
"node_modules",
|
|
"dist",
|
|
"build",
|
|
"main.js",
|
|
"test_helpers",
|
|
"__mocks__"
|
|
]
|
|
}
|