strapi/jsconfig.json

21 lines
345 B
JSON
Raw Normal View History

2021-07-06 14:18:03 +02:00
{
"compilerOptions": {
2021-08-02 17:54:49 +02:00
"rootDir": ".",
2021-07-06 14:18:03 +02:00
"module": "commonjs",
"target": "es6"
},
2021-08-12 09:23:04 +02:00
"exclude": [
"**/node_modules/*",
".git",
".npm",
"**/.cache/*",
"**/.tmp/*",
"**/dist/*",
"**/build/*",
"**/*.test.js",
"**/*.test.api.js",
"**/examples/getstarted/*",
"**/examples/kitchensink/*"
2021-08-12 09:23:04 +02:00
]
2021-07-06 14:18:03 +02:00
}