mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-12-02 14:29:55 +00:00
27 lines
748 B
JSON
27 lines
748 B
JSON
{
|
|
"compilerOptions": {
|
|
"paths": {
|
|
// Allow `import('$:/core/modules/...')` instead of `import('../../core/modules/...')`. Only works inside this project.
|
|
"$:/core/*": ["./core/*"]
|
|
},
|
|
"noImplicitAny": false,
|
|
"strict": false,
|
|
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"declarationDir": "types/generated",
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "Node16",
|
|
"outDir": "types/generated",
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"target": "ESNext"
|
|
},
|
|
"include": ["./core/**/*.js", "./core/**/*.d.ts", "types/tw.d.ts"],
|
|
"exclude": ["types/generated"]
|
|
}
|