nxapi/tsconfig.json
2022-07-27 18:07:08 +01:00

29 lines
613 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "es2020",
"module": "es2022",
"jsx": "react",
"moduleResolution": "node16",
"allowSyntheticDefaultImports": true,
"declaration": true,
"importHelpers": true,
"rootDir": "src",
"outDir": "dist",
"sourceMap": true,
"lib": [
"es2020",
"dom"
],
"stripInternal": true,
"skipLibCheck": true,
"allowJs": true
},
"exclude": [
"dist",
"bin",
"rollup.config.js",
"data"
]
}