house/tsconfig.json

22 lines
458 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2017",
"lib": ["ES2017", "DOM"],
"declaration": true,
"baseUrl": "./src",
"rootDir": "./src",
"outDir": "./lib",
"declarationDir": "./lib",
"esModuleInterop": true,
"moduleResolution": "node",
"module": "es6",
"sourceMap": true,
2023-01-05 09:49:19 +00:00
"strict": true,
2023-01-05 14:47:27 +00:00
"incremental": true,
2023-01-05 09:49:19 +00:00
"plugins": [
{ "name": "@syndicate-lang/ts-plugin" }
]
},
"include": ["src/**/*"]
}