spiegel-keyman/common/web/tslib/tsconfig.json

16 lines
449 B
JSON

{
"extends": "../tsconfig.kmw-main-base.json",
"compilerOptions": {
"allowJs": true,
"importHelpers": false, // This project exists to help define the helpers for the other KMW components.
"tsBuildInfoFile": "./build/tsconfig.tsbuildinfo",
"lib": ["es6", "DOM"], // The latter is b/c esbuild expects the type.
"baseUrl": "./src",
"outDir": "./build/",
"rootDir": "./src"
},
"include": [
"./src/*.ts"
]
}