Lightcord/LightcordApi/tsconfig.json

21 lines
479 B
JSON
Raw Normal View History

2020-08-07 12:50:06 +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",
2020-08-14 21:58:19 +02:00
"./dist/**",
"./prod.config.js",
"./docs"
2020-08-07 12:50:06 +02:00
]
2020-06-10 16:16:33 +02:00
}