jillo-bot/tsconfig.json

15 lines
337 B
JSON
Raw Normal View History

2022-06-08 02:57:15 +02:00
{
"compilerOptions": {
"outDir": "./built/",
"rootDir": "./src/",
"allowJs": true,
"strict": true,
"target": "esnext",
"module": "nodenext",
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"skipLibCheck": true
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "built"]
}