Lightcord/LightcordApi/tsconfig.json

21 lines
459 B
JSON
Raw Permalink Normal View History

2020-09-05 22:50:45 +02:00
{
"compilerOptions": {
"noImplicitAny": false,
"module": "CommonJS",
"target": "ES2017",
"jsx": "react",
"outDir": "./dist",
"resolveJsonModule": true,
"rootDir": "./src",
"sourceMap": true,
"declaration": true,
"allowJs": true
},
"exclude": [
"./js/**",
"./webpack.config.js",
"./dist/**",
"./prod.config.js",
"./docs"
]
2020-06-10 16:16:33 +02:00
}