You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/apitsconfig.json

32 lines
658 B

{
"compilerOptions": {
"sourceMap": true,
"module": "CommonJS",
"target": "esnext",
"noLib": false,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowJs": true,
"outDir": "./dist",
"lib": [
"esnext",
"dom"
],
"types": [
"node",
"webpack-env",
"webpack-dev-server",
"jest"
],
"jsx": "react",
"experimentalDecorators": true
},
"include": [
"./src/ueapi.ts"
],
"exclude": [
"./src/Add-on/**/*"
]
}