Compare commits

...

1 Commits

Author SHA1 Message Date
276535d29d init tsconfig 2021-08-29 18:30:47 -05:00
3 changed files with 19 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
"name": "discord-soundscapes", "name": "discord-soundscapes",
"version": "1.0.0", "version": "1.0.0",
"description": "", "description": "",
"main": "index.ts", "main": "src/index.ts",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"lib": [ "ES2020" ],
"rootDir": "src",
"outDir": "dist"
},
"include": [
"src/*",
"src/**/*"
]
}